server: Update paths

This commit is contained in:
2022-01-12 08:34:59 -06:00
parent 8cd5b93b47
commit b7232b12cd
2 changed files with 2 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
FROM openjdk:8-jre-alpine FROM openjdk:8-jre-alpine
RUN mkdir /app RUN mkdir /app
COPY uhabits-server.jar /app/uhabits-server.jar COPY build/libs/uhabits-server.jar /app/uhabits-server.jar
ENV LOOP_REPO_PATH /data/ ENV LOOP_REPO_PATH /data/
WORKDIR /app WORKDIR /app
CMD ["java", \ CMD ["java", \

View File

@@ -4,6 +4,6 @@ ktor {
port = ${?PORT} port = ${?PORT}
} }
application { application {
modules = [ org.isoron.uhabits.sync.app.SyncApplicationKt.main ] modules = [ org.isoron.uhabits.server.app.SyncApplicationKt.main ]
} }
} }