-
Notifications
You must be signed in to change notification settings - Fork 340
/
dev.Dockerfile
33 lines (28 loc) · 1.05 KB
/
dev.Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# This image is for dev only.
# Performs a Python editable install of the current Cartography source.
# Assumptions:
# - This dockerfile will get called with .cache as a volume mount.
# - The current working directory on the host building this container
# is the cartography source tree from github.
FROM python:3.10-slim
# The UID and GID to run cartography as.
# This needs to match the gid and uid on the host.
# Update this to match. On WSL2 this is usually 1000.
ARG uid=1000
ARG gid=1000
RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends make git && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
# Install dependencies.
WORKDIR /var/cartography
COPY . /var/cartography
RUN pip install -r test-requirements.txt && \
pip install -U -e . && \
chmod -R a+w /var/cartography
# Now copy the entire source tree.
ENV HOME=/var/cartography
# Necessary for pre-commit.
RUN git config --global --add safe.directory /var/cartography && \
git config --local user.name "cartography"
USER ${uid}:${gid}