mirror of
https://github.com/morbalint/kemkas.git
synced 2026-07-17 19:03:46 +00:00
epic: first try at adding a backend
This commit is contained in:
@@ -1,17 +0,0 @@
|
||||
FROM node as builder
|
||||
|
||||
WORKDIR "/src"
|
||||
|
||||
COPY ["package.json", "yarn.lock", "./"]
|
||||
|
||||
RUN yarn install --frozen-lockfile
|
||||
|
||||
COPY . .
|
||||
|
||||
RUN ./compile-less.sh
|
||||
RUN yarn build
|
||||
|
||||
FROM nginx as proxy
|
||||
|
||||
# COPY ./nginx/nginx.conf /etc/nginx/conf.d/default.conf
|
||||
COPY --from=builder "/src/build" "/usr/share/nginx/html"
|
||||
Reference in New Issue
Block a user