Skip to content

Commit

Permalink
Merge pull request #15 from cowprotocol/update_dockerfile
Browse files Browse the repository at this point in the history
Yet another dockerfile update
  • Loading branch information
bram-vdberg authored Jul 11, 2024
2 parents 36b98e7 + 03e5a84 commit 4cf7b98
Showing 1 changed file with 2 additions and 11 deletions.
13 changes: 2 additions & 11 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,13 +1,4 @@
FROM python:3.12

# Copy files and install dependencies
WORKDIR /app
COPY . .
RUN python -m pip install -r requirements.txt

# Disable log buffering
ENV PYTHONBUFFERED=1

# Set entrypoint with 'src.daemon' as the default argument
ENTRYPOINT ["python", "-m"]
CMD ["src.daemon"]
RUN pip install -r requirements.txt
ENTRYPOINT [ "python3", "-m"]

0 comments on commit 4cf7b98

Please sign in to comment.