Compare commits

..

No commits in common. "1b7d941fcd1bfff3fe22f988ce0ea4c2f9780d6a" and "7ec5772432caae51ea7212402643087fe98f9eaa" have entirely different histories.

2 changed files with 2 additions and 3 deletions

View File

@ -1,2 +1,2 @@
Django>=5.0.6,<6.0
Django>=2.0,<3.0
psycopg2>=2.7,<3.0

View File

@ -35,8 +35,7 @@ WORKDIR /go/src/github.com/go/helloworld/
COPY app.go .
RUN go mod init helloworld \
&& go get -d -v github.com/go-sql-driver/mysql \
RUN go get -d -v github.com/go-sql-driver/mysql \
&& CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o app . \
&& cp /go/src/github.com/go/helloworld/app /root