Docker fixes and updates (#461)

Dockerfile:
- Use the most recent stable debian (buster) instead of the previous one
- Build version 1.39.11 by default instead of 1.38.43
- Fix small typo in the comments

Makefile and README.MD: Fix incorrect name of image on dockerhub.
This commit is contained in:
Nikolas Garofil
2020-04-06 17:58:16 +02:00
committed by GitHub
parent 009ab2c77f
commit 4dce416efa
3 changed files with 17 additions and 17 deletions

View File

@@ -1,9 +1,9 @@
FROM debian:stretch AS stage_build
FROM debian:buster AS stage_build
# ------------------------------------------------------------------------------
# Supports only 1.38.40+, accpets also '-upstream' variants
ARG EMSCRIPTEN_VERSION=1.38.43
# Supports only 1.38.40+, accepts also '-upstream' variants
ARG EMSCRIPTEN_VERSION=1.39.11
ARG EMSDK_CHANGESET=master
# ------------------------------------------------------------------------------