Testing Dockge CLI in CI 2
This commit is contained in:
parent
be1416a74a
commit
ee11849a80
3 changed files with 6 additions and 4 deletions
|
@ -68,10 +68,11 @@ jobs:
|
|||
auto-deploy-dockge:
|
||||
needs: [ build-site ]
|
||||
runs-on: docker
|
||||
if: success()
|
||||
container: nikolaik/python-nodejs:python3.11-nodejs21
|
||||
steps:
|
||||
- name: Configure pip
|
||||
uses: |
|
||||
run: |
|
||||
pip config set global.index-url https://pypi.org/simple
|
||||
pip config set global.extra-index-url https://forgejo.neshweb.net/api/packages/Firq/pypi/simple/
|
||||
pip config set global.timeout 60
|
||||
|
|
|
@ -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}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "@firq/fgosite",
|
||||
"type": "module",
|
||||
"version": "0.2.0-pre.3",
|
||||
"version": "0.2.0-pre.4",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"dev": "astro dev",
|
||||
|
|
Loading…
Reference in a new issue