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

Renamed build arg #9

Merged
merged 1 commit into from
May 11, 2024
Merged
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
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ RUN flutter build web
FROM gradle:jdk19-jammy

ARG DOCKER_USERNAME=unset
ARG DOCKER_PASSWORD=unset
ARG DOCKER_TOKEN=unset
ARG DOCKER_IMAGE=neuman314/pasteybin-untagged

COPY ./api .
Expand All @@ -30,7 +30,7 @@ COPY --from=flutter-deps /app/build/web ./static
RUN ./gradlew clean jib -Pmultiplatform_build=true \
-PDOCKER_IMAGE=$DOCKER_IMAGE \
-PDOCKER_USERNAME=$DOCKER_USERNAME \
-PDOCKER_PASSWORD=$DOCKER_PASSWORD
-PDOCKER_TOKEN=$DOCKER_TOKEN


ENTRYPOINT [ "sh" ]
Loading