refactor(archival): ♻ don't expose ports to docker network until required

This commit is contained in:
Collin M. Barrett 2020-09-09 20:58:43 -05:00
parent a50d90e164
commit b0b1cfdab2
2 changed files with 0 additions and 2 deletions

View file

@ -1,7 +1,6 @@
# init base
FROM mcr.microsoft.com/dotnet/core/runtime-deps:3.1.7-alpine AS base
WORKDIR /app
EXPOSE 80
# init build
FROM mcr.microsoft.com/dotnet/core/sdk:3.1.401-alpine AS build

View file

@ -1,7 +1,6 @@
# init base for Visual Studio debugging
FROM mcr.microsoft.com/dotnet/core/aspnet:3.1.7-alpine AS base
WORKDIR /app
EXPOSE 80
# init build
FROM mcr.microsoft.com/dotnet/core/sdk:3.1.401-alpine AS build