Removed development console.log's and added Dockerfile

This commit is contained in:
Dmitriy Shishkov 2020-11-07 07:07:20 +05:00
parent 19fa7fc4e5
commit 53ea63b35f
No known key found for this signature in database
GPG Key ID: D76D70029F55183E
2 changed files with 6 additions and 1 deletions

6
Dockerfile Normal file
View File

@ -0,0 +1,6 @@
FROM node:14.4.0-alpine3.10
USER root
WORKDIR /frontend
COPY . /frontend
RUN yarn
RUN yarn build

View File

@ -24,7 +24,6 @@ export const useForm = () => {
const setInitialState = useCallback(
(questions: QuestionT[]) => {
const state = getInitialState(questions)
console.log('Setting state')
setAnswers(state)
},
[setAnswers]