prepare production dockerfiles and env

This commit is contained in:
2024-12-02 01:24:46 +02:00
parent b3b8637f0e
commit 62b975ab72
9 changed files with 97 additions and 22 deletions

1
ReactTool/frontend/.env Normal file
View File

@@ -0,0 +1 @@
REACT_APP_API_URL=http://localhost:8000

View File

@@ -0,0 +1 @@
REACT_APP_API_URL=https://mini-vlat-ua.duckdns.org/api

View File

@@ -0,0 +1,14 @@
# ReactTool/frontend/Dockerfile.prod
FROM node:16 as build
WORKDIR /app
COPY package*.json ./
COPY yarn.lock ./
RUN yarn install
COPY . .
RUN yarn build
FROM nginx:alpine
COPY --from=build /app/build /usr/share/nginx/html

View File

@@ -31,7 +31,7 @@ class Tutorial extends Component {
componentDidMount() {
fetch('http://localhost:8000/new_session_id', {
fetch(`${process.env.REACT_APP_API_URL}/new_session_id`, {
headers: { 'Accept': 'application/json', 'Content-Type': 'application/json' },
method: 'POST',
body: JSON.stringify({

View File

@@ -178,7 +178,7 @@ class VisQuiz extends Component {
on_survey_click() {
fetch('http://localhost:8000/record_responses_to_db', {
fetch(`${process.env.REACT_APP_API_URL}//record_responses_to_db`, {
headers: { 'Accept': 'application/json', 'Content-Type': 'application/json' },
method: 'POST',
body: JSON.stringify({