Skip to content
This repository was archived by the owner on Apr 13, 2025. It is now read-only.

Commit c2e783f

Browse files
committed
fix: add haskell and move to debian bookworm
1 parent 52f76a5 commit c2e783f

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Dockerfile

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM mcr.microsoft.com/devcontainers/python:3
1+
FROM mcr.microsoft.com/devcontainers/base:bookworm
22

33
WORKDIR /computer_programming
44

@@ -7,7 +7,8 @@ COPY . .
77
RUN apt-get update \
88
&& apt-get install aspell -y
99

10-
RUN pipenv sync --system -d
10+
RUN apt-get install python3 -y && apt-get install python3-pip -y && apt-get install pipenv -y && ln -s /usr/bin/python3 /usr/bin/python
11+
RUN apt-get install ghc -y
1112

1213
RUN adduser -u 5678 --disabled-password --gecos "" computer_programming && chown -R computer_programming /computer_programming
1314
USER computer_programming

0 commit comments

Comments
 (0)