1
0
forked from finn/site

mgt c8 checkpoint at tests

This commit is contained in:
2024-08-04 05:44:20 -07:00
parent eb0f19b109
commit 469785ee33
8 changed files with 76 additions and 4 deletions

View File

@ -1,7 +1,11 @@
# syntax=docker/dockerfile:1.4
FROM python:3-slim-bookworm AS builder
RUN apt update && apt install -y libmariadb-dev gcc
# Second line optional/debug/qol
RUN apt update && apt install -y \
libmariadb-dev gcc \
mariadb-client
WORKDIR /code
COPY requirements.txt /code