Skip to content

Commit a2c4bab

Browse files
Merge branch 'mmcinnestaylor:main' into main
2 parents 58df609 + e8e1e90 commit a2c4bab

File tree

4 files changed

+26
-1
lines changed

4 files changed

+26
-1
lines changed

docs/Dockerfile

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
FROM ruby:latest
2+
3+
RUN gem install bundler
4+
5+
WORKDIR /usr/src/app
6+
7+
COPY . .
8+
9+
RUN bundle install
10+
11+
EXPOSE 4000
12+
13+
ENTRYPOINT [ "bundle", "exec", "jekyll" ]
14+
CMD [ "serve", "--host=0.0.0.0" ]

docs/_config.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,3 +72,5 @@ plugins:
7272
- jekyll-seo-tag
7373
- jekyll-github-metadata
7474
- jekyll-include-cache
75+
76+
exclude: [.gitignore, docker-compose.yml, Dockerfile, Gemfile, Gemfile.lock]

docs/docker-compose.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
name: docs-website
2+
services:
3+
jekyll:
4+
build:
5+
context: ./
6+
volumes:
7+
- ./:/usr/src/app
8+
ports:
9+
- 4000:4000

src/core/templates/core/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@ <h4 class="card-title">Volunteering</h4>
334334
Please contact our team at <a href="mailto:contest@fsu.acm.org">contest@fsu.acm.org</a> for additional information!
335335
</p>
336336
<small class="card-text">
337-
<em>A special thank you to ACM at FSU alumnus Will Davenport for donating the server hardware.</em>
337+
<em>A special thank you to ACM at FSU alumnus <a href="https://www.linkedin.com/in/whiskeydelta" title="Will Davenport LinkedIn" target="_blank" rel="external noopener">Will Davenport</a> for donating the server hardware.</em>
338338
</small>
339339
</div>
340340
</div>

0 commit comments

Comments
 (0)