Files
upn-qr/Dockerfile
2021-11-16 21:17:16 +01:00

10 lines
118 B
Docker

FROM alpine
WORKDIR /home
RUN apk add nodejs yarn
COPY src/ /home/
RUN yarn install
CMD [ "yarn", "run", "start" ]