update packages

This commit is contained in:
Ruidy 2022-03-31 04:49:28 -04:00
parent 70a4253b52
commit 89ba03f362
9 changed files with 9144 additions and 8738 deletions

View file

@ -1,4 +1,8 @@
FROM golang:1.17-alpine AS build FROM golang:1.18-alpine AS build
#ENV CGO_ENABLED 0
ENV GOOS linux
ENV GOARCH amd64
WORKDIR /app WORKDIR /app
@ -10,5 +14,7 @@ RUN go build -o ./out/dist .
FROM alpine FROM alpine
RUN apk upgrade --no-cache
COPY --from=build /app/out/dist . COPY --from=build /app/out/dist .
CMD ./dist CMD ./dist

View file

@ -1,6 +1,6 @@
module go-app module go-app
go 1.17 go 1.18
require ( require (
github.com/gin-gonic/gin v1.7.3 github.com/gin-gonic/gin v1.7.3

View file

@ -60,7 +60,6 @@ github.com/stretchr/testify v1.6.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/
github.com/stretchr/testify v1.7.0 h1:nwc3DEeHmmLAfoZucVR881uASk0Mfjw8xYJ99tb5CcY= github.com/stretchr/testify v1.7.0 h1:nwc3DEeHmmLAfoZucVR881uASk0Mfjw8xYJ99tb5CcY=
github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
github.com/ugorji/go v1.1.7/go.mod h1:kZn38zHttfInRq0xu/PH0az30d+z6vm202qpg1oXVMw= github.com/ugorji/go v1.1.7/go.mod h1:kZn38zHttfInRq0xu/PH0az30d+z6vm202qpg1oXVMw=
github.com/ugorji/go v1.2.6 h1:tGiWC9HENWE2tqYycIqFTNorMmFRVhNwCpDOpWqnk8E=
github.com/ugorji/go v1.2.6/go.mod h1:anCg0y61KIhDlPZmnH+so+RQbysYVyDko0IMgJv0Nn0= github.com/ugorji/go v1.2.6/go.mod h1:anCg0y61KIhDlPZmnH+so+RQbysYVyDko0IMgJv0Nn0=
github.com/ugorji/go/codec v1.1.7/go.mod h1:Ax+UKWsSmolVDwsd+7N3ZtXu+yMGCf907BLYF3GoBXY= github.com/ugorji/go/codec v1.1.7/go.mod h1:Ax+UKWsSmolVDwsd+7N3ZtXu+yMGCf907BLYF3GoBXY=
github.com/ugorji/go/codec v1.2.6 h1:7kbGefxLoDBuYXOms4yD7223OpNMMPNPZxXk5TvFcyQ= github.com/ugorji/go/codec v1.2.6 h1:7kbGefxLoDBuYXOms4yD7223OpNMMPNPZxXk5TvFcyQ=

View file

@ -1,9 +1,9 @@
{ {
"name": "node", "name": "nodeapp",
"version": "1.0.0", "version": "1.0.0",
"main": "index.js", "main": "index.js",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"express": "^4.17.1" "express": "^4.17.3"
} }
} }

View file

@ -1,4 +1,4 @@
FROM python:3.10-slim FROM python:3.11-slim
ENV PYTHONUNBUFFERED 1 ENV PYTHONUNBUFFERED 1

View file

@ -10,4 +10,4 @@ uvicorn = {extras = ["standard"], version = "*"}
[dev-packages] [dev-packages]
[requires] [requires]
python_version = "3.9" python_version = "3.11"

2
python/Pipfile.lock generated
View file

@ -5,7 +5,7 @@
}, },
"pipfile-spec": 6, "pipfile-spec": 6,
"requires": { "requires": {
"python_version": "3.9" "python_version": "3.11"
}, },
"sources": [ "sources": [
{ {

View file

@ -3,19 +3,20 @@
"version": "0.1.0", "version": "0.1.0",
"private": true, "private": true,
"dependencies": { "dependencies": {
"@testing-library/jest-dom": "^5.11.4", "@testing-library/jest-dom": "^5.16.3",
"@testing-library/react": "^11.1.0", "@testing-library/react": "^13.0.0",
"@testing-library/user-event": "^12.1.10", "@testing-library/user-event": "^14.0.0",
"react": "^17.0.2", "react": "^18.0.0",
"react-dom": "^17.0.2", "react-dom": "^18.0.0",
"react-scripts": "4.0.3", "react-scripts": "5.0.0",
"web-vitals": "^1.0.1" "web-vitals": "^2.1.4"
}, },
"scripts": { "scripts": {
"start": "react-scripts start", "start": "react-scripts start",
"build": "react-scripts build", "build": "react-scripts build",
"test": "react-scripts test", "test": "react-scripts test",
"eject": "react-scripts eject" "eject": "react-scripts eject",
"audit-fix": "npm i --package-lock-only && npm audit fix && rm yarn.lock && yarn import && rm package-lock.json"
}, },
"eslintConfig": { "eslintConfig": {
"extends": [ "extends": [

File diff suppressed because it is too large Load diff