Open
Description
When I create this Dockerfile:
FROM ruby:alpine
RUN apk add --no-cache build-base && \
gem update --system && \
gem install compass
VOLUME /src
WORKDIR /src
ENTRYPOINT [ "compass" ]
Then I run:
docker build -t my-compass .
docker run --rm -v "$(pwd)"/example01:/src my-compass compile /src/ --force --trace
If my "$(pwd)"/example01/scss/style.scss contains:
.facets-select-wrapper {
position: relative;
.facets-list {
position: absolute;
top: 100%;
left: 0;
display: inline-block;
border: 1px solid #dedede;
padding: 10px;
max-height: 300px;
overflow: scroll;
z-index: 100;
background: #fff;
transition: 0.2s all;
opacity: 0;
visibility: hidden;
}
.facets-trigger {
display: inline-block;
}
.facets-trigger:hover > .facets-list {
opacity: 1;
visibility: visible;
}
}
I would expect this to generate css files, however i see the following:
NoMethodError on line ["89"] of /usr/local/bundle/gems/compass-1.0.3/lib/compass/configuration/helpers.rb: undefined method `exists?' for class File
Metadata
Metadata
Assignees
Labels
No labels