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