Skip to content

Commit

Permalink
Update README.md; Set correct version (oops)
Browse files Browse the repository at this point in the history
  • Loading branch information
rm-hull committed Nov 14, 2023
1 parent 04d4892 commit a386cb5
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 13 deletions.
16 changes: 8 additions & 8 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ MAINTAINER Richard Hull <rm_hull@yahoo.co.uk>
ENV LEIN_ROOT 1

RUN apk add --update wget ca-certificates bash && \
wget -q "https://raw.githubusercontent.com/technomancy/leiningen/stable/bin/lein" \
-O /usr/local/bin/lein && \
chmod 0755 /usr/local/bin/lein && \
lein && \
apk del wget ca-certificates && \
rm -rf /tmp/* /var/cache/apk/*
wget -q "https://raw.githubusercontent.com/technomancy/leiningen/stable/bin/lein" \
-O /usr/local/bin/lein && \
chmod 0755 /usr/local/bin/lein && \
lein && \
apk del wget ca-certificates && \
rm -rf /tmp/* /var/cache/apk/*

RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app
Expand All @@ -18,6 +18,6 @@ RUN \
lein deps && \
lein ring uberjar && \
rm -rf target/classes ~/.m2

EXPOSE 3000
ENTRYPOINT ["java", "-jar", "target/ars-magna-0.2.0-standalone.jar"]
ENTRYPOINT ["java", "-jar", "target/ars-magna-0.2.1-standalone.jar"]
8 changes: 3 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
# ![logo](https://raw.githubusercontent.com/rm-hull/ars-magna/master/logo.jpg) Ars Magna (Anagram Solver)

[![Build Status](https://travis-ci.org/rm-hull/ars-magna.svg?branch=master)](http://travis-ci.org/rm-hull/ars-magna)
[![Coverage Status](https://coveralls.io/repos/rm-hull/ars-magna/badge.svg?branch=master)](https://coveralls.io/r/rm-hull/ars-magna?branch=master)
[![Dependencies Status](https://versions.deps.co/rm-hull/ars-magna/status.svg)](https://versions.deps.co/rm-hull/ars-magna)
[![Docker Pulls](https://img.shields.io/docker/pulls/richardhull/ars-magna.svg?maxAge=2592000)](https://hub.docker.com/r/richardhull/ars-magna/)
[![Maintenance](https://img.shields.io/maintenance/yes/2018.svg?maxAge=2592000)]()
[![Maintenance](https://img.shields.io/maintenance/yes/2023.svg?maxAge=2592000)]()

A multi-word anagram solver in Clojure, based on the article
**"Anagrams and Pangrams"** from _The Armchair Universe_, by A.K. Dewdney.
Expand All @@ -25,7 +23,7 @@ To build and start the service locally, run:
To build and run a standalone jar:

$ lein ring uberjar
$ java -jar target/ars-magna-0.2.0-standalone.jar
$ java -jar target/ars-magna-0.2.1-standalone.jar

In both instances, the webapp starts on http://localhost:3000. See the curl
examples below for usage.
Expand Down Expand Up @@ -163,7 +161,7 @@ returns the same words:
"cowpoke",
"cripple"
]
````
```

## References

Expand Down

0 comments on commit a386cb5

Please sign in to comment.