cerebry commited on
Commit
a5509a5
·
1 Parent(s): d447bd4

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -5
Dockerfile CHANGED
@@ -1,9 +1,6 @@
1
- # Use an official golang runtime as a parent image
2
- FROM golang:1.16-buster
3
-
4
- # Set the working directory in the container to /app
5
- WORKDIR /app
6
 
 
7
  # Copy the local package files to the container's workspace.
8
  ADD . /app
9
 
 
1
+ FROM golang:1.21
 
 
 
 
2
 
3
+ WORKDIR /usr/src/app
4
  # Copy the local package files to the container's workspace.
5
  ADD . /app
6