From 630a7c5c3503cd2b79ca46297ab1b99cb91e1c74 Mon Sep 17 00:00:00 2001 From: longstone <2110765+longstone@users.noreply.github.com> Date: Tue, 20 Aug 2024 12:58:06 +0200 Subject: [PATCH] fix: revert changes to Dockerfile --- Dockerfile | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9738b89..8ac24a5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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