mirror of
https://gitplac.si/aljaxus/upn-qr.git
synced 2025-12-16 19:50:57 +00:00
10 lines
118 B
Docker
10 lines
118 B
Docker
FROM alpine
|
|
|
|
WORKDIR /home
|
|
|
|
RUN apk add nodejs yarn
|
|
|
|
COPY src/ /home/
|
|
RUN yarn install
|
|
|
|
CMD [ "yarn", "run", "start" ] |