Added Sass to container
This commit is contained in:
+21
-3
@@ -1,6 +1,4 @@
|
||||
# Official PHP + Apache image for running novaconium in production.
|
||||
# See /admin/docs/docker for the bind-mounted paths, docker-entrypoint.sh's
|
||||
# seeding/permissions behavior, and optional MySQL wiring.
|
||||
|
||||
# Build: docker build --no-cache -t novaconium:latest .
|
||||
|
||||
@@ -14,11 +12,31 @@ FROM php:8.5.8-apache-trixie
|
||||
# rebuild.
|
||||
|
||||
RUN apt-get update \
|
||||
&& apt-get install -y --no-install-recommends libsqlite3-dev \
|
||||
&& apt-get install -y --no-install-recommends libsqlite3-dev curl ca-certificates \
|
||||
&& rm -rf /var/lib/apt/lists/* \
|
||||
&& docker-php-ext-install pdo_sqlite pdo_mysql \
|
||||
&& a2enmod rewrite
|
||||
|
||||
# Dart Sass standalone, so the container can compile
|
||||
# novaconium/sass/main.sass -> App/css/main.css itself (see AGENTS.md
|
||||
# "Conventions worth knowing" and /admin/docs/styling). Debian trixie has
|
||||
# no usable dart-sass package, so pull the pinned upstream release tarball.
|
||||
# Bump DART_SASS_VERSION deliberately, like the PHP base tag above.
|
||||
ENV DART_SASS_VERSION=1.83.4
|
||||
RUN set -eux; \
|
||||
arch="$(dpkg --print-architecture)"; \
|
||||
case "$arch" in \
|
||||
amd64) sass_arch='x64' ;; \
|
||||
arm64) sass_arch='arm64' ;; \
|
||||
*) echo "unsupported arch: $arch" >&2; exit 1 ;; \
|
||||
esac; \
|
||||
curl -fsSL -o /tmp/dart-sass.tar.gz \
|
||||
"https://github.com/sass/dart-sass/releases/download/${DART_SASS_VERSION}/dart-sass-${DART_SASS_VERSION}-linux-${sass_arch}.tar.gz"; \
|
||||
tar -xzf /tmp/dart-sass.tar.gz -C /opt; \
|
||||
rm /tmp/dart-sass.tar.gz; \
|
||||
ln -s /opt/dart-sass/sass /usr/local/bin/sass; \
|
||||
sass --version
|
||||
|
||||
# Point DocumentRoot at public/ and allow .htaccess overrides there.
|
||||
RUN sed -ri -e 's#/var/www/html#/var/www/html/public#g' \
|
||||
/etc/apache2/sites-available/*.conf \
|
||||
|
||||
Reference in New Issue
Block a user