This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Install a Hugo on Codeship, https://gohugo.io/ | |
# | |
# You can either add this here, or configure them on the environment tab of your | |
# project settings. | |
HUGO_VERSION="0.14" | |
HUGO_DIR=${HUGO_DIR:="$HOME/hugo"} | |
set -e | |
CACHED_DOWNLOAD="${HOME}/cache/hugo_${HUGO_VERSION}_linux_amd64.tar.gz" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ruby:2.3.0 | |
LABEL maintainer="Kaitlyn Tierney, [email protected]" | |
ENV RAILS_ENV=test | |
RUN apt-get update -qq \ | |
&& apt-get install -y --no-install-recommends \ | |
build-essential \ | |
libpq-dev \ | |
nodejs \ |
OlderNewer