mirror of
https://github.com/lemeow125/Notes.git
synced 2024-11-17 12:19:25 +08:00
Compare commits
No commits in common. "28756d2a86cc1ffcf4eb0241bb3708f10c900f84" and "2ca1dc97f07e670b1a8ccce840674adf2a577299" have entirely different histories.
28756d2a86
...
2ca1dc97f0
3 changed files with 0 additions and 48 deletions
|
@ -1,22 +0,0 @@
|
|||
labels:
|
||||
platform: linux/amd64
|
||||
|
||||
steps:
|
||||
- name: build
|
||||
image: docker
|
||||
when:
|
||||
- branch: master
|
||||
event: push
|
||||
commands:
|
||||
- docker build -t "$REGISTRY_IMAGE_TAG" .
|
||||
- echo "$FORGEJO_REGISTRY_PASSWORD" | docker login "$FORGEJO_REGISTRY_URL" --password-stdin -u "$FORGEJO_REGISTRY_USERNAME"
|
||||
- docker push "$REGISTRY_IMAGE_TAG"
|
||||
volumes:
|
||||
- /var/run/docker.sock:/var/run/docker.sock
|
||||
secrets:
|
||||
[
|
||||
FORGEJO_REGISTRY_URL,
|
||||
FORGEJO_REGISTRY_USERNAME,
|
||||
FORGEJO_REGISTRY_PASSWORD,
|
||||
REGISTRY_IMAGE_TAG,
|
||||
]
|
14
Dockerfile
14
Dockerfile
|
@ -1,14 +0,0 @@
|
|||
FROM node:18-alpine as build
|
||||
|
||||
WORKDIR /usr/local/app
|
||||
COPY ./ /usr/local/app/
|
||||
RUN npm install
|
||||
RUN npm run build
|
||||
|
||||
FROM nginx:latest
|
||||
RUN rm -rf /usr/share/nginx/html/*
|
||||
COPY --from=build /usr/local/app/build/ /usr/share/nginx/html
|
||||
COPY nginx/nginx.conf /etc/nginx/conf.d/default.conf
|
||||
RUN service nginx restart
|
||||
|
||||
EXPOSE 80
|
|
@ -1,12 +0,0 @@
|
|||
server {
|
||||
listen 80;
|
||||
sendfile on;
|
||||
default_type application/octet-stream;
|
||||
gzip on;
|
||||
|
||||
root /usr/share/nginx/build;
|
||||
|
||||
location / {
|
||||
try_files $uri $uri/ /index.html =404;
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue