Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,17 +1,16 @@
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}" \
app.version="${APP_VERSION}" \
maintainer="Sebastian Glahn <hi@sgla.hn>"

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

Expand Down