Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

use specific docker image #1

Merged
merged 1 commit into from
Jul 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 0 additions & 11 deletions .github/workflows/docker-build-push-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,14 +99,6 @@ jobs:
echo "$PR_MESSAGES" >> $GITHUB_OUTPUT
echo "EOF" >> $GITHUB_OUTPUT

# - name: Get Commit Messages
# id: commit-messages
# run: |
# COMMIT_MESSAGES=$(git log --no-merges --format="* %s" @~1..HEAD)
# echo "COMMIT_MESSAGES<<EOF" >> $GITHUB_OUTPUT
# echo "$COMMIT_MESSAGES" >> $GITHUB_OUTPUT
# echo "EOF" >> $GITHUB_OUTPUT

- name: Create Release
id: create_release
uses: actions/create-release@v1
Expand All @@ -122,9 +114,6 @@ jobs:
## Pull Request Messages
${{ steps.pr-messages.outputs.PR_MESSAGES }}

## Commit Messages
${{ steps.commit-messages.outputs.COMMIT_MESSAGES }}

## Security Scan
A security scan was performed on this Docker image. Any critical or high vulnerabilities would have prevented this release.
draft: false
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Use an official Node.js runtime as the base image
FROM node:18
FROM node:18.20.2-buster

# Install Nginx
RUN apt-get update && apt-get install -y nginx certbot python3-certbot-nginx
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "llm-proxy",
"version": "1.0.0",
"version": "1.0.1",
"description": "A Node.js application that manages Nginx",
"main": "dist/index.js",
"scripts": {
Expand Down