Skip to content

Commit

Permalink
fix: revert changes to Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
longstone authored Aug 20, 2024
1 parent e146e29 commit 630a7c5
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,13 @@ FROM python:3.10-alpine
# Install python-lxml
RUN apk add --no-cache --virtual .build-deps \
gcc musl-dev \
libxslt-dev libxml2-dev &&\
libxslt-dev libxml2-dev && \
pip install lxml && \
apk del .build-deps && \
apk add --no-cache libxslt libxml2

RUN mkdir -p /src
COPY ./withings_sync /src
COPY ./setup.py /src
COPY ./.VERSION /src
COPY ./README.md /src
COPY . /src

RUN cd /src && \
python3 ./setup.py install
Expand Down

0 comments on commit 630a7c5

Please sign in to comment.