Skip to content

Commit

Permalink
REE
Browse files Browse the repository at this point in the history
  • Loading branch information
spectrapulse committed Jul 5, 2024
1 parent c114846 commit bf34859
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ RUN apk add --no-cache \
RUN echo "IMAGE_TAG=$IMAGE_TAG"

RUN if [ -z "$IMAGE_TAG" ]; then \
echo "No IMAGE_TAG specified. Exiting." && exit 1 \
echo "No IMAGE_TAG specified. Exiting." && exit 1; \
elif [ "$IMAGE_TAG" = "mariadb" ]; then \
apk add --no-cache mariadb-client \
apk add --no-cache mariadb-client; \
elif [ "$IMAGE_TAG" = "postgresql"]; then \
apk add --no-cache postgresql-client \
apk add --no-cache postgresql-client; \
fi


Expand Down

0 comments on commit bf34859

Please sign in to comment.