mirror of
https://github.com/cloudflare/wrangler-action.git
synced 2024-11-23 18:34:45 +01:00
26 lines
605 B
Text
26 lines
605 B
Text
FROM ubuntu:14.04.5
|
|
|
|
# Because there is no package cache in the image, you need to run:
|
|
RUN apt-get update
|
|
|
|
# Install nodejs
|
|
RUN apt-get install curl -y
|
|
RUN apt-get install python-software-properties -y
|
|
RUN curl -sL https://deb.nodesource.com/setup_12.x | bash -
|
|
RUN apt-get update --allow-unauthenticated
|
|
RUN apt-get install -y nodejs --force-yes
|
|
|
|
# Install smartwrap
|
|
RUN apt-get install git -y
|
|
RUN git clone https://www.github.com/tecfu/smartwrap
|
|
|
|
# Install grunt
|
|
RUN npm install grunt-cli -g
|
|
|
|
# Install dev dependencies
|
|
WORKDIR /smartwrap
|
|
RUN npm install
|
|
|
|
# Run unit tests
|
|
RUN node -v
|
|
RUN npm run test
|