Skip to content
Merged
Show file tree
Hide file tree
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
16 changes: 8 additions & 8 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,13 +1,5 @@
FROM python:3.10-slim

ENV NODE_VERSION=16.17.1

RUN apt-get update; \
apt-get install -y git curl tmux; \
apt-get autoremove -y; \
apt-get clean -y; \
rm -rf /var/lib/apt/lists/*

ENV NODE_VERSION 18.15.0

RUN ARCH= && dpkgArch="$(dpkg --print-architecture)" \
Expand Down Expand Up @@ -59,6 +51,14 @@ RUN ARCH= && dpkgArch="$(dpkg --print-architecture)" \
&& node --version \
&& npm --version


RUN apt-get update; \
apt-get install -y git curl tmux ca-certificates; \
apt-get autoremove -y; \
apt-get clean -y; \
rm -rf /var/lib/apt/lists/*


ARG RUNNER_VERSION

RUN pip install -U pip && pip install poetry && mkdir -p /root/.config/pypoetry \
Expand Down
Loading