Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Update flask and set node version to 16 #31

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion precip_service/requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Flask==1.1.2
Flask==2.1.0
2 changes: 1 addition & 1 deletion temperature_service/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.7-alpine
FROM python:3.7

WORKDIR /app

Expand Down
2 changes: 1 addition & 1 deletion temperature_service/requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Flask==1.1.2
Flask==2.1.0
2 changes: 1 addition & 1 deletion weather_report/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:latest as build-stage
FROM node:16 as build-stage
WORKDIR /app
COPY package*.json ./
RUN npm install
Expand Down