Skip to content

Commit

Permalink
Merge pull request #68 from mniedermaier/fixVirtualBuild
Browse files Browse the repository at this point in the history
Fix the build of the virtual environment caused by python version
  • Loading branch information
manliebert authored Oct 16, 2024
2 parents e25671a + b17a860 commit f67b858
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion software/hwio-virtual/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
FROM python:3-slim
FROM python:3.10.15-slim

RUN apt-get update && apt-get install -y \
network-manager \
gcc \
make \
&& rm -rf /var/lib/apt/lists/*

WORKDIR /CybICS
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
Expand Down

0 comments on commit f67b858

Please sign in to comment.