Testing Dockge CLI in CI 2
This commit is contained in:
parent
be1416a74a
commit
bc5f43802f
3 changed files with 6 additions and 4 deletions
|
@ -2,6 +2,7 @@ FROM node:lts AS build
|
|||
WORKDIR /app
|
||||
COPY . .
|
||||
RUN npm i
|
||||
RUN npm run astro telemetry disable
|
||||
RUN npm run build
|
||||
|
||||
FROM forgejo.neshweb.net/ci-docker-images/website-serve:0.1.3 AS runtime
|
||||
|
@ -10,7 +11,7 @@ COPY --from=build /app/dist /public
|
|||
COPY --from=build /app/serve.json /public/serve.json
|
||||
RUN rm -r /public/data/
|
||||
|
||||
ENV PORT 8081
|
||||
ENV PORT=8081
|
||||
EXPOSE 8081
|
||||
|
||||
CMD [ "serve", "public/", "-p", "8081" ]
|
||||
CMD serve public/ -p ${PORT}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue