File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- FROM bitnami/minideb:latest
1+ FROM ubuntu:latest
2+ ENV DEBIAN_FRONTEND noninteractive
23
34Label MAINTAINER Amir Pourmand
45
56RUN apt-get update -y && apt-get install -y --no-install-recommends \
6- locales \
7+ locales \
78 imagemagick \
89 ruby-full \
910 build-essential \
1011 zlib1g-dev \
11- python3-pip && rm -rf /var/lib/apt/lists/*
12-
12+ jupyter-nbconvert && \
13+ apt-get clean && rm -rf /var/lib/apt/lists/* /var/cache/apt/archives/*
1314
1415RUN sed -i '/en_US.UTF-8/s/^# //g' /etc/locale.gen && \
1516 locale-gen
1617
1718ENV LANG=en_US.UTF-8 \
1819 LANGUAGE=en_US:en \
1920 LC_ALL=en_US.UTF-8 \
20- JEKYLL_ENV=production
21-
22- RUN python3 -m pip install jupyter --break-system-packages --no-cache-dir
21+ JEKYLL_ENV=production
2322
2423# install jekyll and dependencies
2524RUN gem install jekyll bundler
@@ -30,7 +29,7 @@ ADD Gemfile /srv/jekyll
3029
3130WORKDIR /srv/jekyll
3231
33- RUN bundle install --no-cache
32+ RUN bundle install --no-cache
3433# && rm -rf /var/lib/gems/3.1.0/cache
3534EXPOSE 8080
3635
You can’t perform that action at this time.
0 commit comments