La forge institutionnelle d'INRAE étant en production depuis le 10 juin 2025, nous vous invitons à y créer vos nouveaux projets.
Open in Web IDE
Quickly and easily edit multiple files in your project.
Edit
Edit this file only.
FROM python:3.10-slim
COPY script.py /app/script.py
RUN chmod +x /app/script.py
ARG USER=bee
ENV HOME /home/$USER
RUN adduser $USER
USER $USER
WORKDIR $HOME