Skip to content

Commit

Permalink
Merge pull request #9 from czechitas/hires/cleanup
Browse files Browse the repository at this point in the history
Clean up
  • Loading branch information
hiresm authored Sep 29, 2023
2 parents 4f1e4f1 + f0e3a64 commit 2b14ab9
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 3 deletions.
Binary file removed .DS_Store
Binary file not shown.
File renamed without changes.
2 changes: 1 addition & 1 deletion .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@ jobs:
uses: docker/build-push-action@3b5e8027fcad23fda98b2e3ac259d8d67585f671
with:
context: .
file: ./AutomatedTestingApp/Dockerfile
file: ./Dockerfile
push: true
tags: latest
File renamed without changes.
4 changes: 2 additions & 2 deletions AutomatedTestingApp/Dockerfile → Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ EXPOSE 443

FROM mcr.microsoft.com/dotnet/sdk:7.0 AS build
WORKDIR /src
COPY ["AutomatedTestingApp/AutomatedTestingApp.csproj", "AutomatedTestingApp/"]
RUN dotnet restore "AutomatedTestingApp/AutomatedTestingApp.csproj"
COPY ["AutomatedTestingApp/AutomatedTestingApp/AutomatedTestingApp.csproj", "AutomatedTestingApp/"]
RUN dotnet restore "AutomatedTestingApp/AutomatedTestingApp/AutomatedTestingApp.csproj"
COPY . .
WORKDIR "/src/AutomatedTestingApp"
RUN dotnet build "AutomatedTestingApp.csproj" -c Release -o /app/build
Expand Down

0 comments on commit 2b14ab9

Please sign in to comment.