Skip to content
Snippets Groups Projects
Unverified Commit 959077f0 authored by Luis Paolini's avatar Luis Paolini Committed by GitHub
Browse files

Fix ee Dockerhub build (#15449)

* Fix EE Dockerhub for once and for all

* Try to overload the ARG attribute

* Kick the CI
parent b78dcedc
No related branches found
No related tags found
No related merge requests found
......@@ -4,8 +4,6 @@
FROM node:12.20.1-alpine as frontend
ARG MB_EDITION=oss
WORKDIR /app/source
ENV FC_LANG en-US LC_CTYPE en_US.UTF-8
......@@ -20,8 +18,6 @@ RUN yarn install --frozen-lockfile
FROM adoptopenjdk/openjdk11:alpine as backend
ARG MB_EDITION=oss
WORKDIR /app/source
ENV FC_LANG en-US LC_CTYPE en_US.UTF-8
......
#!/bin/bash
# for posterity
# SOURCE_BRANCH: the name of the branch or the tag that is currently being tested.
# SOURCE_COMMIT: the SHA1 hash of the commit being tested.
# COMMIT_MSG: the message from the commit being tested and built.
# DOCKER_REPO: the name of the Docker repository being built.
# DOCKERFILE_PATH: the dockerfile currently being built.
# DOCKER_TAG: the Docker repository tag being built.
# IMAGE_NAME: the name and tag of the Docker repository being built. (This variable is a combination of DOCKER_REPO:DOCKER_TAG.)
docker build -t $IMAGE_NAME --build-arg MB_EDITION=$MB_EDITION .
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment