Skip to content
This repository has been archived by the owner on Aug 4, 2023. It is now read-only.

Commit

Permalink
Simplify Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
joaodaher committed Mar 16, 2021
1 parent a282e08 commit c8021ee
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM python:$RUNTIME

# Install OS dependencies
RUN apt update -y
RUN apt install -y git gcc python3-dev build-essential libffi-dev libssl-dev libtool automake
RUN apt install -y git python3-dev build-essential libffi-dev libssl-dev libtool automake

# Point to app folder
ARG APP_HOME=/app
Expand All @@ -23,7 +23,6 @@ RUN poetry config virtualenvs.create false
COPY pyproject.toml .
COPY poetry.lock .
COPY Makefile .
RUN make setup
RUN poetry install --no-dev --no-root

# Copy local code to the container image.
Expand Down

0 comments on commit c8021ee

Please sign in to comment.