refraction/Dockerfile
2022-06-07 11:11:23 +02:00

7 lines
154 B
Docker

FROM node:17-alpine
WORKDIR /app
COPY package.json yarn.lock .
RUN yarn install --frozen-lockfile
COPY . .
RUN yarn build
CMD [ "node", "dist/index.js" ]