-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
30 lines (26 loc) · 979 Bytes
/
Dockerfile
File metadata and controls
30 lines (26 loc) · 979 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# Use the base image
FROM mcr.microsoft.com/devcontainers/python:1-3.12-bullseye
# Install system packages
RUN apt-get update && apt-get install -y --no-install-recommends \
automake \
build-essential \
clang-11 \
cmake \
git \
libboost-dev \
libboost-thread-dev \
libclang-dev \
libgmp-dev \
libntl-dev \
libsodium-dev \
libssl-dev \
libtool \
vim \
gdb \
valgrind \
&& rm -rf /var/lib/apt/lists/*
# Set the working directory
WORKDIR /workspaces/${localWorkspaceFolderBasename}
# Optional: Install Python dependencies directly here
COPY requirements.txt /workspaces/${localWorkspaceFolderBasename}/requirements.txt
RUN pip install --upgrade pip && pip install -r requirements.txt