refraction/Dockerfile
2022-05-21 21:05:52 +08:00

8 lines
166 B
Docker

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