Skip to content

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
isaacmaffeis committed Aug 17, 2024
1 parent ef34e49 commit 4a9cc37
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
FROM maven:3.8.4-openjdk-8-slim
FROM python:3.8-slim

# Instal Python
RUN apt-get update && \
apt-get install -y python3 python3-pip && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*

RUN mkdir -p /app/input

Expand Down

0 comments on commit 4a9cc37

Please sign in to comment.