Compare commits
3 Commits
uncompress
...
main
Author | SHA1 | Date |
---|---|---|
|
2430d8486f | |
|
1b8d45f128 | |
|
d3063cafdd |
|
@ -1,5 +1,5 @@
|
||||||
FROM ruby:3.2.2-alpine AS builder
|
FROM ruby:3.2.2-alpine AS builder
|
||||||
LABEL stage=distrust-co-builder
|
LABEL stage=caution-co-builder
|
||||||
RUN apk update && apk add g++ make git git-lfs
|
RUN apk update && apk add g++ make git git-lfs
|
||||||
RUN mkdir -p /home
|
RUN mkdir -p /home
|
||||||
COPY Gemfile /home
|
COPY Gemfile /home
|
||||||
|
|
10
Makefile
10
Makefile
|
@ -1,12 +1,12 @@
|
||||||
.PHONY: build
|
.PHONY: build
|
||||||
build:
|
build:
|
||||||
# Build Docker image
|
# Build Docker image
|
||||||
docker build -t distrust-co .
|
docker build -t caution-co .
|
||||||
|
|
||||||
.PHONY: fullclean
|
.PHONY: fullclean
|
||||||
fullclean: clean
|
fullclean: clean
|
||||||
docker rmi distrust-co || true
|
docker rmi caution-co || true
|
||||||
docker image prune -f --filter label=stage=distrust-co-builder || true
|
docker image prune -f --filter label=stage=caution-co-builder || true
|
||||||
|
|
||||||
.PHONY: clean
|
.PHONY: clean
|
||||||
clean:
|
clean:
|
||||||
|
@ -14,9 +14,9 @@ clean:
|
||||||
|
|
||||||
_site: build
|
_site: build
|
||||||
mkdir -p _site
|
mkdir -p _site
|
||||||
docker run distrust-co tar c -C /usr/share/nginx/html . | tar x -C _site
|
docker run caution-co tar c -C /usr/share/nginx/html . | tar x -C _site
|
||||||
|
|
||||||
.PHONY: serve
|
.PHONY: serve
|
||||||
serve: build
|
serve: build
|
||||||
# Run Docker container with listener for current dir and port mapping
|
# Run Docker container with listener for current dir and port mapping
|
||||||
docker run --rm -p 0.0.0.0:4000:80 -it distrust-co
|
docker run --rm -p 0.0.0.0:4000:80 -it caution-co
|
||||||
|
|
|
@ -33,14 +33,14 @@
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<div class="info-block fade-in delay-2">
|
<div class="info-block fade-in delay-2">
|
||||||
<span class="spaced-text">GET</span>
|
<span class="spaced-text">GET</span>
|
||||||
<span class="spaced-text">EARLY</span>
|
<span class="spaced-text">EARLY</span>
|
||||||
<span class="spaced-text">ACCESS</span><br>
|
<span class="spaced-text">ACCESS</span><br>
|
||||||
<span class="spaced-text">BE THE</span>
|
<span class="spaced-text">BE THE</span>
|
||||||
<span class="spaced-text">FIRST</span><br>
|
<span class="spaced-text">FIRST</span><br>
|
||||||
<span class="spaced-text">TO</span>
|
<span class="spaced-text">TO</span>
|
||||||
<span class="spaced-text">TRY IT</span>
|
<span class="spaced-text">TRY IT</span>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="waitlist-form">
|
<div class="waitlist-form">
|
||||||
<form id="contact-form" method="post" class="email-form" action="/submit-email">
|
<form id="contact-form" method="post" class="email-form" action="/submit-email">
|
||||||
|
|
|
@ -162,8 +162,8 @@ h1 {
|
||||||
}
|
}
|
||||||
|
|
||||||
.spaced-text {
|
.spaced-text {
|
||||||
margin-right: 1.25rem;
|
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
|
margin-right: 1.25rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.waitlist-form {
|
.waitlist-form {
|
||||||
|
@ -300,13 +300,13 @@ a {
|
||||||
|
|
||||||
.subtext {
|
.subtext {
|
||||||
max-width: 350px;
|
max-width: 350px;
|
||||||
margin-bottom: 19rem;
|
margin-bottom: 17rem;
|
||||||
margin-top: 0rem;
|
margin-top: 0rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.subtext-thanks {
|
.subtext-thanks {
|
||||||
max-width: 320px;
|
max-width: 320px;
|
||||||
margin-bottom: 27.5rem;
|
margin-bottom: 25rem;
|
||||||
margin-top: 0rem;
|
margin-top: 0rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -338,6 +338,7 @@ a {
|
||||||
color: #636363;
|
color: #636363;
|
||||||
max-width: 340px;
|
max-width: 340px;
|
||||||
font-size: 0.9rem;
|
font-size: 0.9rem;
|
||||||
|
margin-bottom: 5rem;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue