fdurant's picture
Add environment for local development and testing
4b3c9e4
raw
history blame
373 Bytes
FROM python:3.11.9-bookworm
RUN apt update && \
apt install -y bash \
build-essential \
git \
curl && \
rm -rf /var/lib/apt/lists
COPY requirements.txt /
RUN pip3 install -r /requirements.txt
WORKDIR /workspace
COPY start_emulator.sh /
RUN chmod +x /start_emulator.sh
ENTRYPOINT ["/start_emulator.sh"]