diff --git a/Dockerfile b/Dockerfile index a1062b7..b1ef765 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM python:3.9.0-slim -ENV APP_VERSION="5.1.0" \ +ENV APP_VERSION="5.1.1" \ APP="platformio-core" LABEL app.name="${APP}" \ @@ -8,10 +8,9 @@ LABEL app.name="${APP}" \ maintainer="Sebastian Glahn " RUN pip install -U platformio==${APP_VERSION} && \ - mkdir -p /workspace && \ mkdir -p /.platformio && \ chmod a+rwx /.platformio && \ - apt update && apt install -y git && apt-get clean autoclean && apt-get autoremove --yes && rm -rf /var/lib/{apt,dpkg,cache,log}/ + apt-get update && apt-get install -y git && apt-get clean autoclean && apt-get autoremove --yes && rm -rf /var/lib/{apt,dpkg,cache,log}/ USER 1001