All checks were successful
TerribleCodeClub/ButlerBin/pipeline/head This commit looks good
5 lines
80 B
Docker
5 lines
80 B
Docker
FROM node:alpine
|
|
WORKDIR /app
|
|
COPY . /app
|
|
RUN npm install
|
|
CMD [ "npm", "start" ] |