14 lines
266 B
Docker
14 lines
266 B
Docker
FROM mcr.microsoft.com/devcontainers/base:jammy
|
|
|
|
RUN apt-get update && apt-get install -y \
|
|
python3-pip \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
COPY requirements.txt ./
|
|
RUN pip3 install --no-cache-dir -r requirements.txt
|
|
|
|
WORKDIR /app
|
|
|
|
COPY ./app /app
|
|
|
|
EXPOSE 9080 |