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

[Fix Docker Builds #334] changed the dockerfile path in docker.yaml workflow #337

Merged
merged 9 commits into from
Oct 12, 2024
2 changes: 1 addition & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Build the Docker image
run: docker build . --file Dockerfile --tag my-image-name:$(date +%s)
run: docker build . --file docker/Dockerfile --tag my-image-name:$(date +%s)
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ COPY --chown=aardwolf:aardwolf ./config/example.toml /app/aardwolf.toml
#RUN cargo build --bin setup

# Copy the entrypoint and make it executable.
COPY --chown=aardwolf:aardwolf ./docker-entrypoint.sh /usr/local/bin/docker-entrypoint.sh
COPY --chown=aardwolf:aardwolf ./docker/docker-entrypoint.sh /usr/local/bin/docker-entrypoint.sh
RUN chmod u=rx,g=rx,o=rx /usr/local/bin/docker-entrypoint.sh

# Expose the default port. This is often overridden in Docker CLI or Kubernetes.
Expand Down
Loading