wrangler-action/node_modules/smartwrap/docker/Dockerfile.centos-7

29 lines
506 B
Text
Raw Normal View History

2023-08-07 22:11:15 +02:00
FROM centos:7
RUN yum install -y epel-release
# Install bzip2
RUN yum install -y bzip2
RUN yum install -y git
# Install nodejs 11
RUN curl -sL https://rpm.nodesource.com/setup_11.x | bash -
RUN yum install -y nodejs
# RUN ln -s /usr/bin/nodejs /usr/bin/node
# Install smartwrap
RUN git clone --branch master 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 test