You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
dda-masto-embed/masto-embed/Dockerfile

8 lines
139 B
Docker

FROM openjdk:8-alpine
COPY target/uberjar/masto-embed.jar /masto-embed/app.jar
EXPOSE 3000
CMD ["java", "-jar", "/masto-embed/app.jar"]