Skip to content

Commit

Permalink
Dockerfile permission
Browse files Browse the repository at this point in the history
  • Loading branch information
jsixface committed Mar 8, 2024
1 parent f477fb8 commit f49a486
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
FROM eclipse-temurin:17-jre-alpine

RUN apk add --no-cache ffmpeg && \
mkdir /app

ENV BIND=0.0.0.0

WORKDIR /app
EXPOSE 8080

ADD server/static /app/static
ADD server/build/libs/server-all.jar /app
ADD server/static /app/static

RUN apk add --no-cache ffmpeg && \
chown -R 1000 /app
WORKDIR /app
ENV HOME=/app

CMD java -jar /app/server-all.jar

0 comments on commit f49a486

Please sign in to comment.