Commit 1320862 1 parent b93fa35 commit 1320862 Copy full SHA for 1320862
File tree 1 file changed +4
-3
lines changed
1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 1
- FROM python:3-slim-buster
1
+ FROM ubuntu:latest
2
2
3
- RUN apt update && apt install -y curl build-essential g++ git
3
+ RUN apt update && apt install -y curl build-essential g++ git python3
4
4
5
5
# Create a non-root user and group
6
6
RUN useradd -s /bin/sh -d /home/platformio -m docker
7
7
USER docker:docker
8
8
9
9
# Install PlatformIO Core
10
- RUN python3 -c "$(curl -fsSL https://raw.githubusercontent.com/platformio/platformio-core-installer/master/get-platformio.py)"
10
+ RUN curl -fsSL -o get-platformio.py https://raw.githubusercontent.com/platformio/platformio-core-installer/master/get-platformio.py
11
+ RUN python3 get-platformio.py
11
12
ENV PATH=/home/platformio/.platformio/penv/bin:$PATH
12
13
13
14
# Clone MarlinFirmware repository, checkout latest release tag
You can’t perform that action at this time.
0 commit comments