ButlerBin/Dockerfile
Jack Hadrill 17320ee1dd
All checks were successful
TerribleCodeClub/ButlerBin/pipeline/head This commit looks good
Simplify for Butlersaurus
2020-06-08 22:59:10 +01:00

5 lines
80 B
Docker

FROM node:alpine
WORKDIR /app
COPY . /app
RUN npm install
CMD [ "npm", "start" ]