diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index bcc7e5855c143ea33e0374ca38cd5da73fd2b35e..cd9e910de6b2f6388d50f0e8b10e3e29d595c665 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -1,4 +1,5 @@ FROM mcr.microsoft.com/vscode/devcontainers/java:0-8 -RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \ - && apt-get -y install --no-install-recommends leiningen \ No newline at end of file +RUN apt-key adv --refresh-keys --keyserver keyserver.ubuntu.com\ + && apt-get update && export DEBIAN_FRONTEND=noninteractive \ + && apt-get -y install --no-install-recommends leiningen diff --git a/package.json b/package.json index f6c525c5679bb404550c9ed5636da7058ca2a5d2..2b0450d4d37c31386fdbb7b6523b7ac3851f7550 100644 --- a/package.json +++ b/package.json @@ -181,7 +181,7 @@ "test-timezones": "yarn && ./frontend/test/__runner__/run_timezone_tests", "build": "yarn && webpack --bail", "build-watch": "yarn && webpack --watch", - "build-hot": "yarn && NODE_ENV=hot webpack-dev-server --progress", + "build-hot": "yarn && NODE_ENV=hot webpack-dev-server --progress --host 0.0.0.0", "build-stats": "yarn && webpack --json > stats.json", "build-shared": "yarn && webpack --config webpack.shared.config.js", "start": "yarn build && lein ring server",