Skip to content

Commit

Permalink
atualizando dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
joellensilva committed Jan 14, 2025
1 parent 93283ec commit b22b778
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
# set base image (host OS)
FROM python:3.8-slim-buster

RUN apt-get update \
&& apt-get install -y --no-install-recommends ca-certificates
RUN apt-get update && apt-get install -y \
build-essential \
libxml2-dev \
libxslt1-dev \
python3-dev \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*

# set the working directory in the container
WORKDIR /code
Expand Down

0 comments on commit b22b778

Please sign in to comment.