Skip to content

Commit 1da75fc

Browse files
committed
chore: install coreutils
1 parent 3bbadc1 commit 1da75fc

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

.devcontainer/Dockerfile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Dev container Dockerfile
22
FROM mcr.microsoft.com/devcontainers/python:3.12-bullseye
33

4+
# Install essential utilities including coreutils
5+
RUN apt-get update && apt-get install -y \
6+
coreutils \
7+
&& rm -rf /var/lib/apt/lists/*
8+
49
# Install Poetry
510
RUN curl -sSL https://install.python-poetry.org | python3 -

0 commit comments

Comments
 (0)