File size: 348 Bytes
b4e898f
 
 
 
 
 
 
1
2
3
4
5
6
7
8
FROM ubuntu:24.04
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get install -y --no-install-recommends r-base python3 python3-pandas python3-numpy python3-pil && rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY data/ /app/input/
RUN mkdir -p /app/output /sop && ln -s /app/input /sop/input && ln -s /app/output /sop/output
CMD ["bash"]