Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use buster based node image #98

Merged
merged 1 commit into from Jan 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion docker/Dockerfile
@@ -1,4 +1,4 @@
FROM node:10.19.0
FROM node:10.19.0-buster
LABEL maintainer="analytics@skroutz.gr"
RUN apt-get -qq update
RUN rm /usr/local/bin/yarn && \
Expand Down
5 changes: 5 additions & 0 deletions docker/entrypoint-ci.sh
Expand Up @@ -2,6 +2,11 @@

set -ex

# Phantomjs expects the location of OPENSSL_CONF in
# a different system path. Since we upgraded to buster
# the OPENSSL_CONF can be found under /etc/ssl.
export OPENSSL_CONF=/etc/ssl

# fetch assets
yarn install

Expand Down