parent
31a89963b6
commit
59a153b3c2
@ -0,0 +1,10 @@
|
|||||||
|
FROM mcr.microsoft.com/dotnet/sdk:8.0
|
||||||
|
|
||||||
|
WORKDIR /app
|
||||||
|
|
||||||
|
COPY . .
|
||||||
|
|
||||||
|
RUN dotnet restore
|
||||||
|
RUN dotnet build -c Release
|
||||||
|
|
||||||
|
CMD ["dotnet", "run", "--no-build", "--configuration", "Release"]
|
@ -0,0 +1,11 @@
|
|||||||
|
version: '3.8'
|
||||||
|
|
||||||
|
services:
|
||||||
|
euler-105:
|
||||||
|
build:
|
||||||
|
context: ./Individual Task 1
|
||||||
|
dockerfile: Dockerfile
|
||||||
|
volumes:
|
||||||
|
- ./Individual Task 1:/app
|
||||||
|
stdin_open: true
|
||||||
|
tty: true
|
Loading…
Reference in new issue