Skip to content

Commit

Permalink
Fix Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikSchierboom committed Mar 6, 2024
1 parent abf0523 commit cd16454
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ COPY src/Exercism.Representers.FSharp/ ./
RUN dotnet publish -r linux-musl-x64 -c Release -o /opt/representer --no-restore --self-contained true

# Build runtime image
FROM mcr.microsoft.com/dotnet/runtime-deps:8.0.201-alpine3.19-amd64 AS runtime
FROM mcr.microsoft.com/dotnet/runtime-deps:8.0.2-alpine3.19-amd64 AS runtime
WORKDIR /opt/representer

COPY --from=build /opt/representer/ .
Expand Down
1 change: 0 additions & 1 deletion tests/Identifiers/Lambdas/expected_representation.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
module placeholder_1

let placeholder_4 = fun placeholder_2 placeholder_3 -> 1 + 2

let placeholder_5 placeholder_2 = fun placeholder_3 -> 4 - 3

0 comments on commit cd16454

Please sign in to comment.