Compare commits

...

2 commits

2 changed files with 43 additions and 0 deletions

View file

@ -0,0 +1,18 @@
jobs:
Explore-Gitea-Actions:
runs-on: ubuntu-22.04
steps:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to Registry
uses: docker/login-action@v2
with:
registry: git.olympuslab.net
username: ${{ secrets.CONTAINER_REGISTRY_USERNAME }}
password: ${{ secrets.CONTAINER_REGISTRY_TOKEN }}
- name: Build
uses: docker/build-push-action@master
with:
context: .
tags: git.olympuslab.net/alice/notes:latest
load: true

25
Dockerfile Normal file
View file

@ -0,0 +1,25 @@
FROM oven/bun
RUN apt-get update && \
apt-get install -y git
WORKDIR /app/
RUN git clone https://github.com/TuanManhCao/digital-garden
ARG NODE_ENV=development
WORKDIR /app/digital-garden
RUN rm -rf posts/*
COPY Notes/ posts/.
COPY README.md posts/index.md
RUN bun install package.json
CMD ["bun","run","dev"]