Update multiple aspects of our docker development stack. The frontend now has a devel specific webpack that allows development against a local server/api. The docker-composer.yaml also includes both versioning and networking updates. Overall, the major change is to migrate our proxy access into the crc webpack proxy.
12 lines
105 B
Docker
12 lines
105 B
Docker
FROM node:18
|
|
|
|
WORKDIR /app
|
|
|
|
COPY . .
|
|
|
|
RUN npm ci
|
|
|
|
EXPOSE 8002
|
|
EXPOSE 1337
|
|
|
|
CMD [ "npm", "run", "devel" ]
|