This repository has been archived on 2026-05-02. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
PrimeDate/Dockerfile
T
2021-01-21 12:17:38 +01:00

15 lines
313 B
Docker
Executable File

FROM maven
# Create app directory
WORKDIR /usr/src/app
# Bundle app source
COPY src/main ./src/main
COPY pom.xml ./pom.xml
RUN mvn clean package
WORKDIR /usr/src/app/data
CMD [ "sh", "-c", "echo -e $CONSUMER_KEY > consumer_keys.txt && java -jar ../target/primedate-1.0.jar consumer_keys.txt" ]