ADD: reworked the entity edit field
This commit is contained in:
@@ -2,19 +2,21 @@
|
||||
FROM node:latest
|
||||
|
||||
# set working directory
|
||||
WORKDIR /app
|
||||
|
||||
# add `/app/node_modules/.bin` to $PATH
|
||||
# ENV PATH /app/node_modules/.bin:$PATH
|
||||
|
||||
# install app dependencies
|
||||
COPY package*.json ./
|
||||
# COPY package-lock.json ./
|
||||
RUN npm install --force
|
||||
|
||||
RUN apt-get update
|
||||
RUN apt-get upgrade
|
||||
RUN apt-get upgrade -y
|
||||
RUN apt-get -y install tcpdump nano netcat-openbsd curl
|
||||
|
||||
# install app dependencies
|
||||
# COPY package-lock.json ./
|
||||
|
||||
WORKDIR /app
|
||||
COPY package*.json ./
|
||||
RUN npm install --force
|
||||
# RUN npm install react-scripts@3.4.1 -g --silent
|
||||
|
||||
# add app
|
||||
|
||||
Reference in New Issue
Block a user