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/.minpluto/docker/Dockerfile

13 lines
231 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
2024-08-03 20:51:57 -05:00
CMD node ./.minpluto/generated/astro/dist/server/entry.mjs