Skip to content

Commit dc4fedf

Browse files
committed
use specific docker image
1 parent 2ea2ab8 commit dc4fedf

File tree

3 files changed

+2
-13
lines changed

3 files changed

+2
-13
lines changed

.github/workflows/docker-build-push-release.yml

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -99,14 +99,6 @@ jobs:
9999
echo "$PR_MESSAGES" >> $GITHUB_OUTPUT
100100
echo "EOF" >> $GITHUB_OUTPUT
101101
102-
# - name: Get Commit Messages
103-
# id: commit-messages
104-
# run: |
105-
# COMMIT_MESSAGES=$(git log --no-merges --format="* %s" @~1..HEAD)
106-
# echo "COMMIT_MESSAGES<<EOF" >> $GITHUB_OUTPUT
107-
# echo "$COMMIT_MESSAGES" >> $GITHUB_OUTPUT
108-
# echo "EOF" >> $GITHUB_OUTPUT
109-
110102
- name: Create Release
111103
id: create_release
112104
uses: actions/create-release@v1
@@ -122,9 +114,6 @@ jobs:
122114
## Pull Request Messages
123115
${{ steps.pr-messages.outputs.PR_MESSAGES }}
124116
125-
## Commit Messages
126-
${{ steps.commit-messages.outputs.COMMIT_MESSAGES }}
127-
128117
## Security Scan
129118
A security scan was performed on this Docker image. Any critical or high vulnerabilities would have prevented this release.
130119
draft: false

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Use an official Node.js runtime as the base image
2-
FROM node:18
2+
FROM node:18.20.2-buster
33

44
# Install Nginx
55
RUN apt-get update && apt-get install -y nginx certbot python3-certbot-nginx

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "llm-proxy",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "A Node.js application that manages Nginx",
55
"main": "dist/index.js",
66
"scripts": {

0 commit comments

Comments
 (0)