You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
515 B
Docker
27 lines
515 B
Docker
# syntax = docker/dockerfile:1.4
|
|
|
|
FROM tiangolo/uvicorn-gunicorn-fastapi:python3.9-slim AS builder
|
|
|
|
WORKDIR /app
|
|
|
|
COPY requirements.txt ./
|
|
RUN --mount=type=cache,target=/root/.cache/pip \
|
|
pip install -r requirements.txt
|
|
|
|
COPY ./app ./app
|
|
|
|
FROM builder as dev-envs
|
|
|
|
RUN <<EOF
|
|
apt-get update
|
|
apt-get install -y --no-install-recommends git
|
|
EOF
|
|
|
|
RUN <<EOF
|
|
useradd -s /bin/bash -m vscode
|
|
groupadd docker
|
|
usermod -aG docker vscode
|
|
EOF
|
|
# install Docker tools (cli, buildx, compose)
|
|
COPY --from=gloursdocker/docker / /
|