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 build #1670

Merged
merged 2 commits into from
Mar 1, 2023
Merged
Show file tree
Hide file tree
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
6 changes: 2 additions & 4 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -1,20 +1,18 @@
.git
.gitignore
.github
.pytest_cache

Dockerfile
.dockerignore

azure-pipelines.yml
.pre-commit-config.yaml
.semaphore

*.md
!README*.md
MANIFEST.in
setup.py
*.rst

# Documentation
docs
conf
.readthedocs.yml
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG IMAGE=alpine:3.17
ARG IMAGE=python:3.9-alpine
FROM ${IMAGE}

# Build argument populated automatically by docker during build with the target architecture we are building for (eg: 'amd64')
Expand Down