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

13 lines
205 B
Text
Raw Permalink Normal View History

FROM codeberg.org/korbs/nodejs:alpine AS runtime
2024-06-21 01:41:13 -05:00
WORKDIR /app
COPY . .
RUN npm install
RUN npm run translate
RUN npm run build
2024-06-21 01:41:13 -05:00
ENV HOST=0.0.0.0
ENV PORT=4321
EXPOSE 4321
CMD node ./dist/server/entry.mjs