Skip to content

Commit d1c3092

Browse files
committed
fix dockerfile
1 parent b266321 commit d1c3092

2 files changed

Lines changed: 3 additions & 4 deletions

File tree

.github/workflows/docker-image.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ jobs:
2727
id: tag
2828
run: |
2929
if [[ "${{ github.ref }}" == "refs/heads/master" ]]; then
30-
echo "tag=latest" >> $GITHUB_OUTPUT
30+
echo "tag=latest" >> "$GITHUB_OUTPUT"
3131
elif [[ "${{ github.ref }}" == "refs/heads/development" ]]; then
32-
echo "tag=dev" >> $GITHUB_OUTPUT
32+
echo "tag=dev" >> "$GITHUB_OUTPUT"
3333
fi
3434
3535
- name: Build and push Docker image

Dockerfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,11 @@ COPY patroni.yml.tpl /app/patroni.yml.tpl
4141
COPY update-cluster.sh /app/update-cluster.sh
4242
COPY supervisord.conf /etc/supervisor/conf.d/supervisord.conf
4343
COPY diagnose.sh /app/diagnose.sh
44-
COPY fix-cluster.sh /app/fix-cluster.sh
4544
COPY generate-certs.sh /app/generate-certs.sh
4645
COPY VERSION /app/VERSION
4746

4847
# Make scripts executable
49-
RUN chmod +x /app/entrypoint.sh /app/update-cluster.sh /app/diagnose.sh /app/fix-cluster.sh /app/generate-certs.sh
48+
RUN chmod +x /app/entrypoint.sh /app/update-cluster.sh /app/diagnose.sh /app/generate-certs.sh
5049

5150
# Set working directory
5251
WORKDIR /app

0 commit comments

Comments
 (0)