Firq
bc5f43802f
Some checks failed
/ get-version (push) Successful in 3s
/ astro-check (push) Successful in 13s
/ checking (push) Successful in 12s
/ create-release (push) Successful in 6s
/ check-tag (push) Successful in 3s
/ build-site (push) Successful in 1m51s
/ auto-deploy-dockge (push) Failing after 8s
18 lines
354 B
Docker
18 lines
354 B
Docker
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
|
|
|
|
COPY --from=build /app/dist /public
|
|
COPY --from=build /app/serve.json /public/serve.json
|
|
RUN rm -r /public/data/
|
|
|
|
ENV PORT=8081
|
|
EXPOSE 8081
|
|
|
|
CMD serve public/ -p ${PORT}
|