Delete frontend (#29)

This commit is contained in:
Jonathan Zernik 2020-06-04 17:51:47 -07:00 committed by GitHub
parent 88108f7810
commit 907f535d91
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 19 deletions

View file

@ -85,14 +85,6 @@ services:
- net.ipv6.conf.all.disable_ipv6=0
entrypoint: ["./start-sqk.sh"]
frontend:
container_name: frontend
build:
context: ../
dockerfile: docker/frontend/Dockerfile
ports:
- 8080:80
volumes:
# btcctl and lnd containers.
shared:

View file

@ -1,11 +0,0 @@
FROM mhart/alpine-node:latest AS builder
WORKDIR /app
COPY ./frontend/squeakclient-frontend .
RUN npm install
RUN yarn run build
FROM mhart/alpine-node
RUN yarn global add serve
WORKDIR /app
COPY --from=builder /app/build .
CMD ["serve", "-p", "80", "-s", "."]