dockerSupport: Added expose to the dockerfile. Can be used without but still nice to add.

This commit is contained in:
Jonathon Chambers
2024-01-06 10:49:25 -05:00
parent 997c045312
commit 1286974fb6

View File

@@ -13,4 +13,6 @@ WORKDIR /app
RUN mkdir -p /app/data
COPY --from=build-env /app/out .
EXPOSE 5000
ENTRYPOINT [ "dotnet", "CarCareTracker.dll" ]