mirror of
https://github.com/zyachel/quetre.git
synced 2025-04-03 21:17:36 +03:00
11 lines
No EOL
188 B
Docker
11 lines
No EOL
188 B
Docker
FROM node:alpine3.17
|
|
WORKDIR /app
|
|
|
|
RUN apk update && apk add git
|
|
RUN git clone https://github.com/zyachel/quetre .
|
|
RUN npm i -g pnpm
|
|
RUN pnpm install
|
|
|
|
EXPOSE 3000
|
|
|
|
CMD ["pnpm", "start"] |