1
0
Fork 0

Rest of part 1 exercises

This commit is contained in:
Vili Sinervä 2023-03-13 21:37:15 +02:00
parent 936da27d8b
commit cc6da85490
9 changed files with 81 additions and 0 deletions

6
part1/exercise_1.13.txt Normal file
View file

@ -0,0 +1,6 @@
FROM golang:1.16
EXPOSE 8080
WORKDIR /usr/src/app
COPY . .
RUN go build
CMD ["./server"]