Skip to content

Commit

Permalink
chore: Update to Dockerfile to get creating releases to work (#29937)
Browse files Browse the repository at this point in the history
(cherry picked from commit 955db48)
  • Loading branch information
sadpandajoe committed Oct 16, 2024
1 parent b6edf14 commit 1074d1e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
7 changes: 5 additions & 2 deletions RELEASING/Dockerfile.from_local_tarball
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,11 @@ RUN apt-get install -y build-essential libssl-dev \

# Install nodejs for custom build
# https://nodejs.org/en/download/package-manager/
RUN curl -sL https://deb.nodesource.com/setup_16.x | bash - \
&& apt-get install -y nodejs
RUN set -eux; \
curl -sL https://deb.nodesource.com/setup_18.x | bash -; \
apt-get install -y nodejs; \
node --version;
RUN if ! which npm; then apt-get install -y npm; fi

RUN mkdir -p /home/superset
RUN chown superset /home/superset
Expand Down
4 changes: 3 additions & 1 deletion RELEASING/Dockerfile.make_tarball
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@
FROM python:3.10-slim-bookworm

RUN apt-get update -y
RUN apt-get install -y jq
RUN apt-get install -y \
git \
jq

COPY make_tarball_entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]

0 comments on commit 1074d1e

Please sign in to comment.