Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update Dockerfile to reduce the image size #327

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
FROM node:12.16.2-buster-slim
LABEL maintainer="Piotr Antczak <[email protected]>"

RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y python3 git python3-setuptools && \
DEBIAN_FRONTEND=noninteractive apt-get install -y python3-pip && pip3 install platformio && \
RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get --no-install-recommends install -y python3 git python3-setuptools && \
DEBIAN_FRONTEND=noninteractive apt-get --no-install-recommends install -y python3-pip && pip3 install --no-cache-dir platformio && \
DEBIAN_FRONTEND=noninteractive apt-get clean && \
yarn global add nodemon && \
cd /tmp && git clone https://github.com/arendst/Tasmota.git && \
rm -rf /var/lib/apt/lists/*
rm -rf /var/lib/apt/lists/*
ADD public /tasmocompiler/public/
ADD server /tasmocompiler/server/
ADD src /tasmocompiler/src/
Expand Down