1
0
mirror of https://github.com/Dikootje/dlsync.git synced 2025-12-17 18:01:28 +00:00
Files
dlsync/Dockerfile
2025-01-08 14:30:44 -08:00

15 lines
330 B
Docker

FROM adoptopenjdk:11-jre-hotspot
# Update and install dependencies
RUN apt update && \
apt-get -y install coreutils python3-venv jq
# Install AWS CLI
RUN python3 -m venv /opt/venv
ENV PATH="/opt/venv/bin:$PATH"
RUN pip install awscli
# DlSync app
RUN mkdir /opt/app
WORKDIR /opt/app
COPY build/libs/dlsync-*.jar dlsync.jar