Compare commits

...

6 Commits

Author SHA1 Message Date
Asif Bacchus a2272d69b2 chore(ide): update docker build args 2022-02-26 23:04:24 -07:00
Asif Bacchus dc8f553975 chore(dockerfile): bump debian and sass versions 2022-02-26 22:58:59 -07:00
Asif Bacchus 6508abf765 chore(ide): Rider docker build configuration 2022-02-26 22:58:45 -07:00
Asif Bacchus 09ab9a5f62 fix(entrypoint): change dart-sass cli options
- oneshot: remove --update, re-compile of all files
- watch: remove --stop-on-error
  - allow continuation after errors instead of container exit
  - display errors and allow for realtime correction
2021-08-03 21:21:53 -06:00
Asif Bacchus bc7a465c55 docs(dockerfile): update branch name for readme link 2021-08-03 18:22:40 -06:00
Asif Bacchus 6a9a5f7e2a fix(entrypoint): do not stop on errors while in watch mode 2021-08-02 03:24:08 -06:00
5 changed files with 60 additions and 8 deletions

View File

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="GitToolBoxProjectSettings">
<option name="commitMessageIssueKeyValidationOverride">
<BoolValueOverride>
<option name="enabled" value="true" />
</BoolValueOverride>
</option>
<option name="commitMessageValidationConfigOverride">
<CommitMessageValidationOverride>
<option name="enabled" value="true" />
</CommitMessageValidationOverride>
</option>
</component>
</project>

View File

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="MarkdownSettings">
<enabledExtensions>
<entry key="MermaidLanguageExtension" value="false" />
<entry key="PlantUMLLanguageExtension" value="false" />
</enabledExtensions>
</component>
</project>

28
.run/Dockerfile.run.xml Normal file
View File

@ -0,0 +1,28 @@
<component name="ProjectRunConfigurationManager">
<configuration default="false" name="Dockerfile" type="docker-deploy" factoryName="dockerfile" server-name="Docker LOCAL">
<deployment type="dockerfile">
<settings>
<option name="imageTag" value="docker.asifbacchus.dev/dart-sass/ab-dart-sass:1.2-1.49.9" />
<option name="buildArgs">
<list>
<DockerEnvVarImpl>
<option name="name" value="INTERNAL_VERSION" />
<option name="value" value="1.2" />
</DockerEnvVarImpl>
<DockerEnvVarImpl>
<option name="name" value="GIT_COMMIT" />
<option name="value" value="dc8f553975" />
</DockerEnvVarImpl>
<DockerEnvVarImpl>
<option name="name" value="BUILD_DATE" />
<option name="value" value="2022-02-26" />
</DockerEnvVarImpl>
</list>
</option>
<option name="buildOnly" value="true" />
<option name="sourceFilePath" value="Dockerfile" />
</settings>
</deployment>
<method v="2" />
</configuration>
</component>

View File

@ -2,10 +2,10 @@
# Dart-SASS compiler on Debian-Slim
#
ARG DEBIAN_VERSION=buster-slim
ARG DEBIAN_VERSION=bullseye-slim
FROM debian:${DEBIAN_VERSION}
ARG DEBIAN_VERSION
ARG SASS_VERSION=1.36.0
ARG SASS_VERSION=1.49.9
# create a limited user to run sass
ARG SASS_UID=8101
@ -42,7 +42,7 @@ LABEL maintainer="Asif Bacchus <asif@asifbacchus.dev>"
LABEL dev.asifbacchus.docker.internalName="ab-dart-sass"
LABEL org.opencontainers.image.authors="Asif Bacchus <asif@asifbacchus.dev>"
LABEL org.opencontainers.image.description="Dockerized implementation of Dart-SASS compiler running on Debian (slim) using a limited account."
LABEL org.opencontainers.image.documentation="https://git.asifbacchus.dev/ab-docker/dart-sass/raw/branch/master/README.md"
LABEL org.opencontainers.image.documentation="https://git.asifbacchus.dev/ab-docker/dart-sass/raw/branch/main/README.md"
LABEL org.opencontainers.image.source="https://git.asifbacchus.dev/ab-docker/dart-sass.git"
LABEL org.opencontainers.image.title="ab-dart-sass"
LABEL org.opencontainers.image.url="https://git.asifbacchus.dev/ab-docker/dart-sass"
@ -54,9 +54,9 @@ ENV TZ=Etc/UTC
ENV SASS_STYLE=compressed
# copy scripts and set permissions
COPY [ "entrypoint.sh", "/usr/local/bin/entrypoint.sh" ]
RUN chown root:root /usr/local/bin/entrypoint.sh \
&& chmod 755 /usr/local/bin/entrypoint.sh
COPY [ "entrypoint.sh", "/usr/local/bin/" ]
RUN chown root:root /usr/local/bin/*.sh \
&& chmod 755 /usr/local/bin/*.sh
# switch to user account and run sass compiler
USER sass

View File

@ -7,11 +7,11 @@
if [ "$1" = "shell" ]; then
exec /bin/bash
elif [ "$1" = "oneshot" ]; then
exec /opt/dart-sass/sass -s "$SASS_STYLE" --update --stop-on-error /sass:/css
exec /opt/dart-sass/sass -s "$SASS_STYLE" --stop-on-error --embed-sources /sass:/css
elif [ -n "$1" ]; then
exec "$@"
else
exec /opt/dart-sass/sass -s "$SASS_STYLE" --watch --poll --stop-on-error /sass:/css
exec /opt/dart-sass/sass -s "$SASS_STYLE" --watch --poll --embed-sources /sass:/css
fi
exit $?