4 Commits

Author SHA1 Message Date
asif 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 bc7a465c55 docs(dockerfile): update branch name for readme link 2021-08-03 18:22:40 -06:00
asif 6a9a5f7e2a fix(entrypoint): do not stop on errors while in watch mode 2021-08-02 03:24:08 -06:00
asif 952439a58d feature(dockerfile): remap exit code 143 to 0
- remaps sigterm exit code to 0 so docker properly detects a clean exit
2021-08-01 05:39:09 -06:00
5 changed files with 41 additions and 7 deletions
+13
View File
@@ -0,0 +1,13 @@
# Default ignored files
/shelf/
/workspace.xml
# Rider ignored files
/contentModel.xml
/modules.xml
/.idea.ab-dart-sass.iml
/projectSettingsUpdater.xml
# Datasource local storage ignored files
/dataSources/
/dataSources.local.xml
# Editor-based HTTP Client requests
/httpRequests/
+8
View File
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="UserContentModel">
<attachedFolders />
<explicitIncludes />
<explicitExcludes />
</component>
</project>
+13
View File
@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="CommitMessageInspectionProfile">
<profile version="1.0">
<inspection_tool class="BodyLimit" enabled="true" level="ERROR" enabled_by_default="true" />
<inspection_tool class="SubjectBodySeparation" enabled="true" level="ERROR" enabled_by_default="true" />
<inspection_tool class="SubjectLimit" enabled="true" level="ERROR" enabled_by_default="true" />
</profile>
</component>
<component name="VcsDirectoryMappings">
<mapping directory="$PROJECT_DIR$" vcs="Git" />
</component>
</project>
+5 -5
View File
@@ -42,7 +42,7 @@ LABEL maintainer="Asif Bacchus <asif@asifbacchus.dev>"
LABEL dev.asifbacchus.docker.internalName="ab-dart-sass" LABEL dev.asifbacchus.docker.internalName="ab-dart-sass"
LABEL org.opencontainers.image.authors="Asif Bacchus <asif@asifbacchus.dev>" 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.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.source="https://git.asifbacchus.dev/ab-docker/dart-sass.git"
LABEL org.opencontainers.image.title="ab-dart-sass" LABEL org.opencontainers.image.title="ab-dart-sass"
LABEL org.opencontainers.image.url="https://git.asifbacchus.dev/ab-docker/dart-sass" LABEL org.opencontainers.image.url="https://git.asifbacchus.dev/ab-docker/dart-sass"
@@ -54,13 +54,13 @@ ENV TZ=Etc/UTC
ENV SASS_STYLE=compressed ENV SASS_STYLE=compressed
# copy scripts and set permissions # copy scripts and set permissions
COPY [ "entrypoint.sh", "/usr/local/bin/entrypoint.sh" ] COPY [ "entrypoint.sh", "/usr/local/bin/" ]
RUN chown root:root /usr/local/bin/entrypoint.sh \ RUN chown root:root /usr/local/bin/*.sh \
&& chmod 755 /usr/local/bin/entrypoint.sh && chmod 755 /usr/local/bin/*.sh
# switch to user account and run sass compiler # switch to user account and run sass compiler
USER sass USER sass
ENTRYPOINT [ "/usr/bin/tini", "--", "/usr/local/bin/entrypoint.sh" ] ENTRYPOINT [ "/usr/bin/tini", "-e", "143", "--", "/usr/local/bin/entrypoint.sh" ]
# set build timestamp, git and version labels # set build timestamp, git and version labels
ARG INTERNAL_VERSION ARG INTERNAL_VERSION
+2 -2
View File
@@ -7,11 +7,11 @@
if [ "$1" = "shell" ]; then if [ "$1" = "shell" ]; then
exec /bin/bash exec /bin/bash
elif [ "$1" = "oneshot" ]; then 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 elif [ -n "$1" ]; then
exec "$@" exec "$@"
else 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 fi
exit $? exit $?