Skip to content

Commit ba98e22

Browse files
committed
tweak the PLACKUP_ARGS for prod
1 parent 586f4e2 commit ba98e22

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/build-production-container.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
build-args: |
4949
APP_ENV=poduction
5050
HOST_PORT=3000
51-
PLACKUP_ARGS='-E production -s Starman --workers=10 -l /tmp/app.sock'
51+
PLACKUP_ARGS=-E production -s Starman --workers=10 -l /tmp/app.sock
5252
push: true
5353
tags: ${{ steps.meta.outputs.tags }}
5454
labels: ${{ steps.meta.outputs.labels }}

src/docker-entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ if [ "$1" = "serve" ]; then
44
echo "Starting the application..."
55
echo "Environment: $APP_ENV"
66
echo "Host Port: $HOST_PORT"
7-
echo "Plackup Options: $PLACKUP_ARGS"
7+
echo "Plackup Options: ${PLACKUP_ARGS}"
88
echo "git binary: $(which git) - $(git --version)"
99
echo "========================="
1010
echo "Access the application at http://localhost:${HOST_PORT}"

0 commit comments

Comments
 (0)