Skip to content

Commit

Permalink
remove windows line endings from Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
nylonee committed Oct 28, 2023
1 parent e0d4c48 commit aea566c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@ FROM hseeberger/scala-sbt:eclipse-temurin-11.0.14.1_1.6.2_2.13.8 as build

WORKDIR /app

# Copy the project files necessary for sbt update first and then run update. These layers will be cached and
# sbt update will not be run unless these files change.
COPY / /
RUN sbt update

Expand All @@ -17,4 +15,6 @@ WORKDIR /app
COPY --from=build /app/target/universal/stage /app

COPY docker/entrypoint.sh /app/entrypoint.sh
RUN sed -i 's/\r$//' /app/entrypoint.sh && chmod +x /app/entrypoint.sh

ENTRYPOINT ["/app/entrypoint.sh"]

0 comments on commit aea566c

Please sign in to comment.