1
Fork 0
This repository has been archived on 2024-12-04. You can view files and clone it, but cannot push or open issues or pull requests.
MinPluto-Frontend/Dockerfile

13 lines
205 B
Text
Raw Normal View History

2024-07-12 00:08:17 -05:00
FROM codeberg.org/korbs/nodejs:alpine AS runtime
2024-07-07 19:04:25 -05:00
WORKDIR /app
2024-04-14 22:56:13 -05:00
2024-07-07 19:04:25 -05:00
COPY . .
2024-04-14 22:56:13 -05:00
2024-07-07 19:04:25 -05:00
RUN npm install
2024-04-14 22:56:13 -05:00
RUN npm run translate
2024-07-07 19:04:25 -05:00
RUN npm run build
2024-04-14 22:56:13 -05:00
2024-07-07 19:04:25 -05:00
ENV HOST=0.0.0.0
ENV PORT=1930
EXPOSE 1930
CMD node ./dist/server/entry.mjs