Commit e5af8833 authored by John Wang's avatar John Wang

test: add gcc

parent 431a17cd
...@@ -3,6 +3,11 @@ FROM python:3.10-slim AS base ...@@ -3,6 +3,11 @@ FROM python:3.10-slim AS base
LABEL maintainer="takatost@gmail.com" LABEL maintainer="takatost@gmail.com"
RUN apt-get update \
&& apt-get install -y --no-install-recommends gcc \
&& apt-get autoremove \
&& rm -rf /var/lib/apt/lists/*
COPY requirements.txt /requirements.txt COPY requirements.txt /requirements.txt
RUN pip install --prefix=/pkg -r requirements.txt RUN pip install --prefix=/pkg -r requirements.txt
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment