Skip to content

Commit

Permalink
Merge pull request #322 from atlanticwave-sdx/unbreak-docker-image
Browse files Browse the repository at this point in the history
Unbreak container image
  • Loading branch information
sajith authored Aug 21, 2024
2 parents 16543a6 + 21d15e2 commit 7c5f294
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .hadolint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,7 @@ ignored:
# DL3008 asks to pin Debian package versions, but that way we will
# miss out on security updates.
- DL3008

# DL3013 asks to pin package versions. We mostly do, but hadolint
# can't check extras (such as `[wsgi]`), which we install.
- DL3013
3 changes: 3 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ ENV PATH="/opt/venv/bin:$PATH"

COPY . /usr/src/app

# Now install sdx-controller and the WSGI server.
RUN pip install --no-cache-dir .[wsgi]

# The final image.
FROM python:3.9-slim-bullseye AS sdx-runtime-image

Expand Down

0 comments on commit 7c5f294

Please sign in to comment.