mirror of
https://gitplac.si/aljaxus/upn-qr.git
synced 2025-12-16 19:50:57 +00:00
11 lines
164 B
Plaintext
11 lines
164 B
Plaintext
FROM node:20-alpine
|
|
|
|
WORKDIR /app
|
|
|
|
COPY package.json yarn.lock /app/
|
|
RUN yarn install
|
|
|
|
COPY public/ views/ /app/
|
|
COPY index.js /app/
|
|
|
|
CMD [ "yarn", "run", "start" ] |