-
Notifications
You must be signed in to change notification settings - Fork 411
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
sugarforever
committed
Mar 5, 2024
1 parent
ded0fee
commit 6049193
Showing
4 changed files
with
59 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
name: Docker Image CI | ||
|
||
on: | ||
push: | ||
branches: [ "main" ] | ||
pull_request: | ||
branches: [ "main" ] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
# Generate a timestamp and store it in a variable | ||
- name: Generate Timestamp | ||
id: timestamp | ||
run: echo "::set-output name=timestamp::$(date +%s)" | ||
|
||
- name: Build the Docker image | ||
run: | | ||
TIMESTAMP="${{ steps.timestamp.outputs.timestamp }}" | ||
docker build . --file Dockerfile --tag 0001coder/chatollama:${TIMESTAMP} | ||
docker tag 0001coder/chatollama:${TIMESTAMP} 0001coder/chatollama:latest | ||
- name: Log in to Docker Hub | ||
run: docker login -u ${{ secrets.DOCKER_USERNAME }} -p ${{ secrets.DOCKER_PASSWORD }} | ||
|
||
- name: Push Docker image to registry | ||
run: | | ||
TIMESTAMP="${{ steps.timestamp.outputs.timestamp }}" | ||
docker push 0001coder/chatollama:${TIMESTAMP} | ||
docker push 0001coder/chatollama:latest |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
ARG NODE_VERSION=20.5.1 | ||
|
||
FROM node:${NODE_VERSION}-slim | ||
|
||
WORKDIR /app | ||
|
||
COPY pnpm-lock.yaml package.json ./ | ||
|
||
RUN npm install -g pnpm | ||
|
||
RUN pnpm i | ||
|
||
COPY . . | ||
|
||
RUN pnpm run build | ||
|
||
EXPOSE 3000 | ||
|
||
CMD ["node", ".output/server/index.mjs"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.