Skip to content

Commit

Permalink
Fix build after rebasing on upstream
Browse files Browse the repository at this point in the history
  • Loading branch information
froch committed May 28, 2024
1 parent 01cdf6d commit f5943d6
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 95 deletions.
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
FROM node:alpine as builder
FROM node:lts-alpine as builder
WORKDIR /app

COPY package.json .
COPY package.json yarn.lock ./
RUN set -eux \
&& yarn
&& yarn install

COPY . .
RUN set -eux \
&& yarn build

FROM nginx:alpine as app
FROM nginx:stable-alpine as app
COPY --from=builder /app/dist/ /usr/share/nginx/html/
COPY ping.conf /etc/nginx/conf.d/default.conf
74 changes: 0 additions & 74 deletions chains/mainnet/axelar.json

This file was deleted.

11 changes: 0 additions & 11 deletions chains/testnet/crossfi.json

This file was deleted.

6 changes: 1 addition & 5 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,4 @@ services:
context: .
dockerfile: Dockerfile
ports:
- "80:80"
volumes:
- ./www:/usr/share/nginx/html
networks:
- mynet
- "8080:80"
3 changes: 2 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@
"extends": "@vue/tsconfig/tsconfig.json",
"include": ["env.d.ts", "src/**/*", "src/**/*.vue"],
"compilerOptions": {
"skipLibCheck": true,
// "ignoreDeprecations": "5.0",
"lib": [
"lib": [
"es2022",
"dom"
],
Expand Down

0 comments on commit f5943d6

Please sign in to comment.