Compare commits
2 Commits
a27b0a8b37
...
a944cf3878
Author | SHA1 | Date | |
---|---|---|---|
a944cf3878 | |||
599970ed72 |
17
Containerfile
Normal file
17
Containerfile
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
FROM docker.io/library/ruby:3.3
|
||||||
|
|
||||||
|
ARG SMASHING_VERSION
|
||||||
|
|
||||||
|
RUN gem install smashing -v ${SMASHING_VERSION}
|
||||||
|
RUN apt update --yes
|
||||||
|
RUN apt install nodejs --yes
|
||||||
|
RUN apt clean all
|
||||||
|
RUN mkdir --parents /smashing
|
||||||
|
|
||||||
|
ENV SMASHING_PROJECT_DIR=/smashing
|
||||||
|
|
||||||
|
ADD container-entrypoint.sh /container-entrypoint.sh
|
||||||
|
|
||||||
|
ENTRYPOINT ["/container-entrypoint.sh"]
|
||||||
|
|
||||||
|
CMD ["start"]
|
16
Makefile
Normal file
16
Makefile
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
REPOSITORY = vcs.enp.one/skylab/smashing-container
|
||||||
|
SMASHING_VERSION = 1.3.6
|
||||||
|
|
||||||
|
|
||||||
|
.PHONY: help docs
|
||||||
|
# source: https://marmelab.com/blog/2016/02/29/auto-documented-makefile.html
|
||||||
|
help: ## List Makefile targets
|
||||||
|
$(info Makefile documentation)
|
||||||
|
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-10s\033[0m %s\n", $$1, $$2}'
|
||||||
|
|
||||||
|
|
||||||
|
image: ## Build image
|
||||||
|
podman build . --tag $(REPOSITORY):$(SMASHING_VERSION) --build-arg "SMASHING_VERSION=$(SMASHING_VERSION)"
|
||||||
|
|
||||||
|
push: image ## Build and publish image
|
||||||
|
podman push $(REPOSITORY):$(SMASHING_VERSION)
|
9
container-entrypoint.sh
Executable file
9
container-entrypoint.sh
Executable file
@ -0,0 +1,9 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
|
cd "${SMASHING_PROJECT_DIR}"
|
||||||
|
|
||||||
|
bundle install
|
||||||
|
|
||||||
|
smashing "$@"
|
Loading…
Reference in New Issue
Block a user