Skip to content

Commit

Permalink
Merge pull request #76 from jvivian/jvivian/issue75
Browse files Browse the repository at this point in the history
Update Dockerfile to use entrypoint correctly
  • Loading branch information
jvivian authored Mar 29, 2024
2 parents 69ce2ed + 9056b43 commit cc79af3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1

FROM python:3.9-slim-buster
FROM --platform=linux/amd64 python:3.9-slim-buster

ENV POETRY_VERSION=1.4 \
POETRY_VIRTUALENVS_CREATE=false
Expand All @@ -22,5 +22,5 @@ COPY . /code/
# Project initialization:
RUN poetry install --no-interaction

ENTRYPOINT ["c19dfm"]
ENTRYPOINT ["poetry", "run", "c19dfm"]
CMD ["--help"]

0 comments on commit cc79af3

Please sign in to comment.